home *** CD-ROM | disk | FTP | other *** search
AMOS Source Code | 1978-01-12 | 1.4 KB | 45 lines |
- '~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- '
- ' Smooth Credit Scroller
- '
- ' By W.H.Liu (19-7-91) with AMOS v1.3
- '
- '~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- SET_UP_SCREEN
- SET_UP_TEXT
- Procedure SET_UP_SCREEN
- Screen Open 0,640,285,2,Hires
- Screen Display 0,,35,,
- Palette $0,$FFF
- Hide
- End Proc
- Procedure SET_UP_TEXT
- Def Scroll 1,0,0 To 640,285,0,-1
- For I=1 To 24
- Read A$
- If A$="*end*"
- For II=1 To 270
- Wait 2
- Scroll 1
- Next II
- End If
- If A$<>"*end*"
- Locate 0,34
- Centre A$ : Curs Off
- For II=1 To 16
- Wait 2
- Scroll 1
- Next II
- End If
- Next I
- Data "Welcome to...","","Smooth Credit Scroller!","By W.H.Liu",""
- Data "This is just an example of what can be achieved with AMOS"
- Data "Don't forget you can change the font as well!",""
- Data "Happy programming!","","This is similar to the scroller used"
- Data "In the game Double Dragon 2","and it looks good for a game"
- Data "intro!"
- Data "","Why not add some of your own music","and some flashy graphics"
- Data "to make a demo?","","Do what you want with this program"
- Data "and incorporate it into your own programs...","","Adios Amigo!"
- Data "*end*"
- End Proc